home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Games / WarpQuake / Src / amiga_timer.s < prev    next >
Text File  |  2000-05-22  |  244b  |  18 lines

  1.         .section    ".text"
  2.         .globl    ppctimer
  3.         .type    ppctimer,@function
  4.  
  5. # return the timebase registers in the structure passed in
  6.  
  7.         .align    4
  8.  
  9. ppctimer:    mftbu    r4
  10.         mftbl    r5
  11.         mftbu    r6
  12.         cmpw    r4,r6
  13.         bne-    ppctimer
  14.  
  15.         stw    r4,0(r3)
  16.         stw    r5,4(r3)
  17.         blr
  18.